Test Presentation

A test presentation with some features

Vladislav Morozov

SECTION

SUBSECTION

Hello There

This presentation shows a few slides made by Quarto and Reveal.js along with header logo and header text which are easily embedded by using the Quarto filter reveal-header

  • .button class provides a Beamer-like button, e.g. Summary

Slide Backgrounds

This slide is created using the background attribute ({background="#43464B"}) and as you can see that header text color is different (difference is trivial though) than before.

if you want you can change the color of the header text for slides with background attribute using css class .inverse-header. For example,

.inverse-header {
  color: #c1c1c1 !important;
}

Here using !important is important :p.

Slide Backgrounds

This slide contains a header div, therefore it has a header.

Lists

Ordered:

  1. A o
  2. o

Other:

  • f
    • subfirst
    • subsecond
  • second
  • third

Code

Executable Code

1+1
2

Line Highlighting


import numpy as np
import matplotlib.pyplot as plt

r = np.arange(0, 2, 0.01)
theta = 2 * np.pi * r
fig, ax = plt.subplots(subplot_kw={'projection': 'polar'})
ax.plot(theta, r)
ax.set_rticks([0.5, 1, 1.5, 2])
ax.grid(True)
plt.show()

Code with Columns

import numpy as np
import matplotlib.pyplot as plt

r = np.arange(0, 2, 0.01)
theta = 2 * np.pi * r
fig, ax = plt.subplots(subplot_kw={'projection': 'polar'})
ax.plot(theta, r)
ax.set_rticks([0.5, 1, 1.5, 2])
ax.grid(True)
plt.show()

Other Section

Other Subsection

Slide

Slid

Math

Equations

Some equations

Outcome is \(y_{it}\) \[ \E[y_{it}|x_{it}= x] = f(x) \]

Some equations 2

Outcome is \(y_{it}\) \[ \E[y_{it}|x_{it}= x] = f(x) \]